home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rpc_ypbind.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  77 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10241);
  10.  script_bugtraq_id(52);
  11.  script_version ("$Revision: 1.14 $");
  12.  script_cve_id("CVE-1999-0312");
  13.  
  14.  name["english"] = "ypbind service";
  15.  name["francais"] = "Service ypbind";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. The ypbind RPC service is running.  If you do not use this service, then
  20. disable it as it may become a security threat in the future, if a vulnerability
  21. is discovered.
  22.  
  23. Risk factor : Low";
  24.  
  25.  
  26.  desc["francais"] = "
  27. Le service RPC ypbind tourne.
  28. Si vous ne l'utilisez pas, alors
  29. dΘsactivez-le puisqu'il risque de
  30. devenir un jour une faille de 
  31. sΘcuritΘ si une vulnerabilitΘ 
  32. est trouvΘe.
  33.  
  34. Facteur de risque : Faible";
  35.  
  36.  
  37.  script_description(english:desc["english"], francais:desc["francais"]);
  38.  
  39.  summary["english"] = "Checks the presence of a RPC service";
  40.  summary["francais"] = "VΘrifie la prΘsence d'un service RPC";
  41.  script_summary(english:summary["english"], francais:summary["francais"]);
  42.  
  43.  script_category(ACT_GATHER_INFO);
  44.  
  45.  
  46.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  47.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  48.  family["english"] = "RPC"; 
  49.  family["francais"] = "RPC";
  50.  script_family(english:family["english"], francais:family["francais"]);
  51.  script_dependencie("rpc_portmap.nasl");
  52.  script_require_keys("rpc/portmap");
  53.  exit(0);
  54. }
  55.  
  56. #
  57. # The script code starts here
  58. #
  59.  
  60.  
  61. include("misc_func.inc");
  62.  
  63.  
  64. RPC_PROG = 100007;
  65. tcp = 0;
  66. port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_UDP);
  67. if(!port){
  68.     port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_TCP);
  69.     tcp = 1;
  70.     }
  71.  
  72. if(port)
  73. {
  74.  if(tcp)security_note(port);
  75.  else security_note(port, protocol:"udp");
  76. }
  77.